home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-2.iso / extra_2 / asm106.zip / HELLO.ASM < prev    next >
Assembly Source File  |  1995-08-15  |  373b  |  11 lines

  1. ; +-------------------------------------------------------------+ ;        
  2. ; | Sample hello world program for use with the Magic Assembler | ;
  3. ; +-------------------------------------------------------------+ ;
  4.         mov     ah,09
  5.         mov     dx,offset(hello)
  6.         int     21
  7.         mov     ax,4c00
  8.         int     20
  9.  
  10. hello   db      'Hello, world!$'
  11.